home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _A712974542A242B1A9CF06B478F4B621 < prev    next >
Encoding:
Text File  |  2004-03-17  |  1.2 KB  |  64 lines

  1. shader()
  2. {
  3.     cull("none")
  4.     sortweight("sprite")
  5.  
  6.     pass()
  7.     {
  8.         pixelshader("blur.psh")
  9.         vertexshader("downsample_blur.vsh")
  10.  
  11.         tmu()
  12.         {
  13.             texture()
  14.             {
  15.                 mapchannel(0)
  16.                 usermap(0)
  17.  
  18.                 addressfunc("clamp", "clamp", "clamp")
  19.                 filtering("linear_no_mip")
  20.             }
  21.         }
  22.  
  23.         tmu()
  24.         {
  25.             texture()
  26.             {
  27.                 mapchannel(0)
  28.                 usermap(0)
  29.  
  30.                 addressfunc("clamp", "clamp", "clamp")
  31.                 filtering("linear_no_mip")
  32.             }
  33.         }
  34.  
  35.         tmu()
  36.         {
  37.             texture()
  38.             {
  39.                 mapchannel(0)
  40.                 usermap(0)
  41.  
  42.                 addressfunc("clamp", "clamp", "clamp")
  43.                 filtering("linear_no_mip")
  44.             }
  45.         }
  46.  
  47.         tmu()
  48.         {
  49.             texture()
  50.             {
  51.                 mapchannel(0)
  52.                 usermap(0)
  53.  
  54.                 addressfunc("clamp", "clamp", "clamp")
  55.                 filtering("linear_no_mip")
  56.             }
  57.         }
  58.  
  59.         depthfunc("always", 0)
  60.         nofog()
  61.     }
  62. }
  63.  
  64.